home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / BKISSSRC.ZIP / MAKEFILE < prev   
Text File  |  1994-02-13  |  2KB  |  40 lines

  1. # makefile MAKE V2.0 or higher
  2. .autodepend
  3.  
  4. # name of the demo (8 characters or less)
  5. DEMO = bytekiss
  6.  
  7. # parts that make up the demo
  8. README = misc.!!!\$(DEMO).nfo
  9. FILEID = misc.!!!\file_id.diz
  10. RUNNER = loader\runner.exe
  11. PARTS1 = bounce\bounce.exe title\title.exe cancel\cancel.exe iris\iris.exe
  12. PARTS2 = sinus\sinus.exe stretch\stretch.exe slidetxt\slidetxt.exe
  13. PARTS3 = tunnel\tunnel.exe credits\credits.exe
  14. FILES = misc.!!!\musgus.inf loader\loader.exe misc.!!!\never.mod
  15.  
  16. ##############################################################################
  17.  
  18. $(DEMO).zip:    $(DEMO).exe $(README) $(FILEID) makefile
  19.                 @if exist $(DEMO).zip del $(DEMO).zip
  20.                 pkzip /ex $(DEMO).zip $(DEMO).exe $(README) $(FILEID)
  21.                 banner $(DEMO).zip $(FILEID)
  22.  
  23. ##############################################################################
  24.  
  25. $(DEMO).exe:    $(RUNNER) $(DEMO).jlb
  26.                 @if exist $(DEMO).exe del $(DEMO).exe
  27.                 copy /b $(RUNNER)+$(DEMO).jlb $(DEMO).exe
  28.                 @if exist $(DEMO).jlb del $(DEMO).jlb
  29.  
  30. ##############################################################################
  31.  
  32. $(DEMO).jlb:    $(FILES) $(PARTS1) $(PARTS2) $(PARTS3)
  33.                 @if exist $(DEMO).jlb del $(DEMO).jlb
  34.                 jlib /a $(DEMO) $(FILES)
  35.                 jlib /a $(DEMO) $(PARTS1)
  36.                 jlib /a $(DEMO) $(PARTS2)
  37.                 jlib /a $(DEMO) $(PARTS3)
  38.  
  39. ##############################################################################
  40.